home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr05 / keycal.zip / GENERIC.DEF < prev    next >
Text File  |  1993-07-04  |  841b  |  22 lines

  1. ; module-definition file for generic -- used by LINK.EXE
  2. NAME         Generic       ; application's module name
  3. DESCRIPTION  'Sample Microsoft Windows Application'
  4. EXETYPE      WINDOWS       ; required for all Windows applications
  5. STUB         'WINSTUB.EXE' ; Generates error message if application
  6.                ; is run without Windows
  7.  
  8. ;CODE can be moved in memory and discarded/reloaded
  9. ;DATA must be MULTIPLE if program can be invoked more than once
  10. CODE  PRELOAD MOVEABLE DISCARDABLE
  11. DATA  PRELOAD MOVEABLE MULTIPLE
  12.  
  13. HEAPSIZE     2048
  14. STACKSIZE    7120       ; 5120 is recommended minimum
  15.  
  16. ; All functions that will be called by any Windows routine
  17. ; MUST be exported.
  18. EXPORTS
  19.     MainWndProc   @1   ; name of window processing function
  20.     About          @2   ; name of "About" processing function
  21.     Calendar      @3   ; Calendar dialog function
  22.